Sha256: 57a41174ca107746d10a01b2848d2be5578cd8165a584b62be02bb8ec1acb6c0

Contents?: true

Size: 333 Bytes

Versions: 10

Compression:

Stored size: 333 Bytes

Contents

class CreateMartyUsers < ActiveRecord::Migration
  def change
    create_table :marty_users do |t|
      t.timestamps

      t.string  :login,     null: false, limit: 255
      t.string  :firstname, null: false, limit: 255
      t.string  :lastname,  null: false, limit: 255
      t.boolean :active,    null: false
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
marty-0.5.21 db/migrate/003_create_marty_users.rb
marty-0.5.20 db/migrate/003_create_marty_users.rb
marty-0.5.19 db/migrate/003_create_marty_users.rb
marty-0.5.18 db/migrate/003_create_marty_users.rb
marty-0.5.17 db/migrate/003_create_marty_users.rb
marty-0.5.16 db/migrate/003_create_marty_users.rb
marty-0.5.15 db/migrate/003_create_marty_users.rb
marty-0.5.14 db/migrate/003_create_marty_users.rb
marty-0.5.13 db/migrate/003_create_marty_users.rb
marty-0.5.12 db/migrate/003_create_marty_users.rb