10 lines
198 B
Ruby
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
|