11 lines
197 B
11 lines
197 B
6 years ago
|
class CreateEduSettings < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
create_table :edu_settings do |t|
|
||
|
t.string :name
|
||
|
t.string :value
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|