Sha256: d0b32f980b0c85e3be3931d6da78cc2cc5d137d76d518103d7075a3dcf44627c
Contents?: true
Size: 242 Bytes
Versions: 1
Compression:
Stored size: 242 Bytes
Contents
class CreateComments < ActiveRecord::Migration[6.0] def change create_table :comments do |t| t.string :commenter t.text :body t.references :article, null: false, foreign_key: true t.timestamps end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
blog_app-0.0.1 | db/migrate/20220803160125_create_comments.rb |