Sha256: a5d662ce89c92bc0337af18fa44b575c9f3cb8d9137f40d3613ee05dc47ffa1b
Contents?: true
Size: 423 Bytes
Versions: 1
Compression:
Stored size: 423 Bytes
Contents
class CreateUsers < ActiveRecord::Migration def change create_table :restpack_user_users do |t| t.string :name, :limit => 128 t.string :nickname, :limit => 128 t.string :email, :limit => 512 t.string :image, :limit => 1024 t.string :location, :limit => 512 t.string :description, :limit => 1024 t.integer :application_id, :null => false t.timestamps end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
restpack_user_service-0.0.5 | db/migrate/20130807130943_create_users.rb |