Sha256: 5fb46efdc83dd3102726010af57adba23604c625d1b3293f2832a28dc79e7c2c
Contents?: true
Size: 268 Bytes
Versions: 27
Compression:
Stored size: 268 Bytes
Contents
class CreatePosts < ActiveRecord::Migration[6.0] def change create_table :posts do |t| t.references :person, null: false, foreign_key: true, index: true t.text :title, null: false t.text :body, null: false t.timestamps end end end
Version data entries
27 entries across 27 versions & 1 rubygems