a11yist/db/migrate/20240819170606_create_principles.rb

11 lines
189 B
Ruby
Raw Permalink Normal View History

2024-09-05 22:54:38 +02:00
class CreatePrinciples < ActiveRecord::Migration[7.2]
def change
create_table :principles do |t|
t.string :name_de
t.string :name_en
t.timestamps
end
end
end