10 lines
183 B
Ruby
10 lines
183 B
Ruby
class CreateClients < ActiveRecord::Migration
|
|
def change
|
|
create_table :clients do |t|
|
|
t.string :name
|
|
t.string :key
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|