Sha256: 06aaa046f24515a1463f62fa897a53095269539f06969afdf96d69dd9f218b99

Contents?: true

Size: 391 Bytes

Versions: 3

Compression:

Stored size: 391 Bytes

Contents

# This migration comes from clubhouse (originally 20150226023025)
class CreateClubhouseOrganizations < ActiveRecord::Migration
  def change
    create_table :clubhouse_organizations, id: :uuid do |t|
      t.string :name, null: false, limit: 30
      t.string :email, null: false

      t.timestamps null: false
    end

    add_index :clubhouse_organizations, :name, unique: true
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
clubhouse-0.3.0 spec/dummy/db/migrate/20150228061005_create_clubhouse_organizations.clubhouse.rb
clubhouse-0.2.0 spec/dummy/db/migrate/20150228061005_create_clubhouse_organizations.clubhouse.rb
clubhouse-0.1.0 spec/dummy/db/migrate/20150228061005_create_clubhouse_organizations.clubhouse.rb