aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20240227145317_add_authors_to_thing.rb
blob: 0c26b81db0a8cd5313aaf6f80456077e5c0cf836 (plain)
1
2
3
4
5
6
class AddAuthorsToThing < ActiveRecord::Migration[7.1]
  def change
    add_column :things, :authors, :string, null: false
    add_column :things, :editors, :boolean, default: false
  end
end