Files
astuto/db/migrate/20190824141258_create_posts.rb
2019-08-24 16:51:25 +02:00

14 lines
358 B
Ruby

class CreatePosts < ActiveRecord::Migration[6.0]
def change
create_table :posts do |t|
t.string :title, null: false
t.text :description
t.references :board, null: false, foreign_key: true
t.references :user, null: false, foreign_key: true
t.references :post_status, foreign_key: true
t.timestamps
end
end
end