gab-social/db/migrate/20190917135359_create_statu...

10 lines
198 B
Ruby

class CreateStatusRevisions < ActiveRecord::Migration[5.2]
def change
create_table :status_revisions do |t|
t.bigint :status_id
t.string :text
t.timestamps
end
end
end