tab/db/migrate/20150908092731_create_clients.rb

11 lines
268 B
Ruby
Raw Normal View History

2015-09-08 11:30:11 +02:00
class CreateClients < ActiveRecord::Migration
def change
create_table :clients do |t|
2018-03-13 14:50:50 +01:00
t.string :username, null: false, index: true, unique: true
2015-09-08 11:44:07 +02:00
t.string :key, null: false, index: true, unique: true
2015-09-08 11:30:11 +02:00
t.timestamps null: false
end
end
end