mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
11 lines
200 B
Ruby
11 lines
200 B
Ruby
class CreateApiKeys < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :api_keys do |t|
|
|
t.references :user, foreign_key: true
|
|
t.string :key
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|