Files
astuto/db/migrate/20190824093336_create_post_statuses.rb

11 lines
189 B
Ruby
Raw Normal View History

2019-08-24 12:06:48 +02:00
class CreatePostStatuses < ActiveRecord::Migration[6.0]
def change
create_table :post_statuses do |t|
t.string :name
t.string :color
t.timestamps
end
end
end