thirteen-tien-len/db/migrate/20231202163732_create_commands.rb
2023-12-03 13:16:27 +00:00

12 lines
201 B
Ruby

class CreateCommands < ActiveRecord::Migration[6.1]
def change
create_table :commands do |t|
t.string :name
t.string :trigger
t.text :body
t.timestamps
end
end
end