2024-06-04 20:05:26 +00:00
|
|
|
class AddQueriesDescription < ActiveRecord::Migration[7.1]
|
2024-06-04 20:04:45 +00:00
|
|
|
def up
|
2024-06-05 07:55:45 +00:00
|
|
|
add_column :queries, :description, :string
|
2024-06-04 20:04:45 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def down
|
|
|
|
|
remove_column :queries, :description
|
|
|
|
|
end
|
|
|
|
|
end
|