Sha256: 03b9c9d685b8b4ef9a035eac35c4c44d9888e3089ab13e6c9ae75481e41050be

Contents?: true

Size: 202 Bytes

Versions: 11

Compression:

Stored size: 202 Bytes

Contents

class CreateUsers < ActiveRecord::Migration
  def change
    create_table :users do |t|
      t.string :name, null: false
      t.timestamps
    end

    add_index :users, :name, unique: true
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
search_object-1.2.3 example/db/migrate/20131102130117_create_users.rb
search_object-1.2.2 example/db/migrate/20131102130117_create_users.rb
search_object-1.2.1 example/db/migrate/20131102130117_create_users.rb
search_object-1.2.0 example/db/migrate/20131102130117_create_users.rb
search_object-1.1.3 example/db/migrate/20131102130117_create_users.rb
search_object-1.1.2 example/db/migrate/20131102130117_create_users.rb
search_object-1.1.1 example/db/migrate/20131102130117_create_users.rb
search_object-1.1.0 example/db/migrate/20131102130117_create_users.rb
search_object-1.0 example/db/migrate/20131102130117_create_users.rb
search_object-0.2 example/db/migrate/20131102130117_create_users.rb
search_object-0.1 example/db/migrate/20131102130117_create_users.rb