initial data model implementation

This commit is contained in:
2026-01-22 13:47:01 +01:00
parent bf2f9e9af7
commit c2436fab13
101 changed files with 2667 additions and 0 deletions
@@ -0,0 +1,15 @@
class CreateSupportedLanguages < ActiveRecord::Migration[8.1]
def change
create_table :supported_languages do |t|
t.string :code, null: false
t.string :name, null: false
t.string :native_name, null: false
t.integer :sort_order, null: false, default: 0
t.boolean :active, null: false, default: true
t.index :code, unique: true
t.timestamps
end
end
end