13 lines
268 B
13 lines
268 B
5 years ago
|
class CreateWeappSettings < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
create_table :weapp_settings do |t|
|
||
|
t.string :type
|
||
|
t.string :link
|
||
|
t.boolean :online, default: false
|
||
|
t.integer :position, default: 0
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|