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