Sha256: 6c42d2ee64d70eca4d918161ea14242d96e48803cfe4d2cc941db603ec785054

Contents?: true

Size: 279 Bytes

Versions: 9

Compression:

Stored size: 279 Bytes

Contents

class CreateUsers < ActiveRecord::Migration
  def self.up
    create_table :users do |t|
      # t.column :name, :string
      t.column "login", :text, :null => false
      t.column "password", :text, :null => false
    end
  end

  def self.down
    drop_table :users
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
sugoi-mail-0.0.1 db/migrate/002_create_users.rb
sugoi-mail-0.0.5 db/migrate/002_create_users.rb
sugoi-mail-0.0.0 db/migrate/002_create_users.rb
sugoi-mail-0.1.5 db/migrate/002_create_users.rb
sugoi-mail-0.0.3 db/migrate/002_create_users.rb
sugoi-mail-0.1.0 db/migrate/002_create_users.rb
sugoi-mail-0.0.2 db/migrate/002_create_users.rb
sugoi-mail-0.3.2 db/migrate/002_create_users.rb
sugoi-mail-0.3.0 db/migrate/002_create_users.rb