tab/db/migrate/20150908092731_create_clients.rb
David Vandorpe 7e07debc91
Revert "Fix for WiNA"
This reverts commit eae4a3e99c.
2018-03-21 19:40:03 +01:00

10 lines
264 B
Ruby

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