Files
grecia/db/migrate/20210107125458_create_sdg_phases.rb
Javi Martín 13f95e9419 Add SDG phase model
The purpose of this model will be to have different sections in the SDG
index.
2021-01-14 17:38:01 +01:00

10 lines
208 B
Ruby

class CreateSDGPhases < ActiveRecord::Migration[5.2]
def change
create_table :sdg_phases do |t|
t.integer :kind, null: false
t.index :kind, unique: true
t.timestamps
end
end
end