Sha256: 87905cb8bc832742d01cad644b8a2662b9ace16e64cdf18ba10008418330a50f

Contents?: true

Size: 326 Bytes

Versions: 6

Compression:

Stored size: 326 Bytes

Contents

class CreateNippoCoreGroups < ActiveRecord::Migration[5.0]
  def change
    create_table :nippo_core_groups do |t|
      t.string :name, null: false
      t.text :description
      t.integer :creator_id, null: false, index: true
      t.foreign_key :nippo_core_users, column: :creator_id

      t.timestamps
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
nippo_core-1.0.2 db/migrate/20170420102455_create_nippo_core_groups.rb
nippo_core-1.0.1 db/migrate/20170420102455_create_nippo_core_groups.rb
nippo_core-1.0.0 db/migrate/20170420102455_create_nippo_core_groups.rb
nippo_core-0.3.0 db/migrate/20170420102455_create_nippo_core_groups.rb
nippo_core-0.2.0 db/migrate/20170420102455_create_nippo_core_groups.rb
nippo_core-0.1.0 db/migrate/20170420102455_create_nippo_core_groups.rb