mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
11 lines
189 B
Ruby
11 lines
189 B
Ruby
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
|