10 lines
160 B
Ruby
10 lines
160 B
Ruby
|
class CreateLanguages < ActiveRecord::Migration[7.1]
|
||
|
def change
|
||
|
create_table :languages do |t|
|
||
|
t.string :name
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|