Sha256: 40458d19a42cb53f93fe6b482f4ee90cfa80ce20abe03f975d375a9827e76446
Contents?: true
Size: 305 Bytes
Versions: 6
Compression:
Stored size: 305 Bytes
Contents
class CreateAccountDomain < ActiveRecord::Migration def up create_table :account_domains do |t| t.column :account_id, :integer t.column :url, :string t.column :verified, :boolean t.column :primary, :boolean end end def down drop_table :account_domains end end
Version data entries
6 entries across 6 versions & 1 rubygems