Sha256: cf47293490ce60d88a31697ccb0cfa801d2589ef394b44e9a3f8e07d23448953
Contents?: true
Size: 376 Bytes
Versions: 35
Compression:
Stored size: 376 Bytes
Contents
class CreateAccountDomain < ActiveRecord::Migration def up create_table :account_domains, id: false do |t| t.uuid :id, primary_key: true t.uuid :account_id t.column :url, :string t.column :verified, :boolean t.column :primary, :boolean end add_index :account_domains, :id end def down drop_table :account_domains end end
Version data entries
35 entries across 35 versions & 1 rubygems