Files
Dalan/db/migrate/20191210090006_add_description_to_labels.rb
2026-08-13 19:56:46 +03:30

6 lines
156 B
Ruby

class AddDescriptionToLabels < ActiveRecord::Migration[5.2]
def change
add_column :labels, :description, :string, null: true, after: :scope
end
end