11 lines
179 B
Ruby
11 lines
179 B
Ruby
|
class CreateApiKeys < ActiveRecord::Migration[8.0]
|
||
|
def change
|
||
|
create_table :api_keys do |t|
|
||
|
t.string :key
|
||
|
t.string :client
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|