Sha256: 6c8e3ee8b022c086fb611052fb7cc29bb5813e6439910029369f921bb50c4596

Contents?: true

Size: 291 Bytes

Versions: 7

Compression:

Stored size: 291 Bytes

Contents

# +ActiveRecord+ migration for Accounts
ActiveRecord::Migration.create_table :accounts do |t|
  t.string :name
  t.integer :code
end

# +ActiveRecord+ migration for Users
ActiveRecord::Migration.create_table :users do |t|
  t.string :name
  t.integer :account_id
  t.string :letter_code
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
auto_increment-1.5.2 spec/support/active_record.rb
auto_increment-1.5.1 spec/support/active_record.rb
auto_increment-1.5.0 spec/support/active_record.rb
auto_increment-1.4.1 spec/support/active_record.rb
auto_increment-1.4.0 spec/support/active_record.rb
auto_increment-1.3.0 spec/support/active_record.rb
auto_increment-1.2.0 spec/support/active_record.rb