Gab-Social/db/migrate/20190917135359_create_status_revisions.rb
2019-09-17 17:21:45 +03:00

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