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

Version Path
sober_swag-0.8.0 example/db/migrate/20200603172347_create_posts.rb
sober_swag-0.7.0 example/db/migrate/20200603172347_create_posts.rb
sober_swag-0.6.0 example/db/migrate/20200603172347_create_posts.rb
sober_swag-0.5.0 example/db/migrate/20200603172347_create_posts.rb
sober_swag-0.4.0 example/db/migrate/20200603172347_create_posts.rb
sober_swag-0.3.0 example/db/migrate/20200603172347_create_posts.rb
sober_swag-0.2.0 example/db/migrate/20200603172347_create_posts.rb