mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
23 lines
522 B
Ruby
23 lines
522 B
Ruby
class CreateLanguages < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :languages do |t|
|
|
t.string :name
|
|
t.string :other_names
|
|
t.integer :universe_id
|
|
t.integer :user_id
|
|
t.string :history
|
|
t.string :typology
|
|
t.string :dialectical_information
|
|
t.string :register
|
|
t.string :phonology
|
|
t.string :grammar
|
|
t.string :numbers
|
|
t.string :quantifiers
|
|
t.string :notes
|
|
t.string :private_notes
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|