tab/db/migrate/20150908092731_create_clients.rb
David Vandorpe eae4a3e99c
Fix for WiNA
2018-03-13 14:50:50 +01:00

11 lines
268 B
Ruby

class CreateClients < ActiveRecord::Migration
def change
create_table :clients do |t|
t.string :username, null: false, index: true, unique: true
t.string :key, null: false, index: true, unique: true
t.timestamps null: false
end
end
end