a11yist/db/migrate/20240810081701_create_standards.rb

14 lines
257 B
Ruby
Raw Permalink Normal View History

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