14 lines
323 B
Ruby
14 lines
323 B
Ruby
class CreateBots < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table :bots do |t|
|
|
t.string :name
|
|
t.string :telegram_api_token
|
|
t.string :discord_api_token
|
|
t.belongs_to :user, null: false, foreign_key: true
|
|
t.belongs_to :profile, foreign_key: true
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|