Soc/db/migrate/20231019164620_create_tags.rb

10 lines
163 B
Ruby

class CreateTags < ActiveRecord::Migration[7.1]
def change
create_table :tags do |t|
t.string :name, null: false
t.timestamps
end
end
end