mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
13 lines
276 B
Ruby
13 lines
276 B
Ruby
# frozen_string_literal:true
|
|
|
|
class CreateOpenAPIClients < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :open_api_clients do |t|
|
|
t.string :name
|
|
t.integer :calls_count, default: 0
|
|
t.string :token
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|