thirteen-tien-len/db/migrate/20231126154137_create_bots.rb
2023-11-28 12:04:44 +00:00

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