1
0
Fork 0
This repository has been archived on 2023-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
lesson-decentralized_microb.../db/migrate/20210310092955_create_posts.rb

11 lines
268 B
Ruby
Raw Normal View History

2021-03-10 09:31:29 +00:00
class CreatePosts < ActiveRecord::Migration[6.1]
def change
create_table :posts do |t|
t.timestamps
t.references :profile, null: false, foreign_key: true
t.string :text, null: false
2021-03-10 10:18:57 +00:00
t.datetime :published_at, null: false
2021-03-10 09:31:29 +00:00
end
end
end