11 lines
189 B
Ruby
11 lines
189 B
Ruby
|
|
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
|