Farmbot-Web-App/db/migrate/20180323190601_create_globa...

12 lines
205 B
Ruby

class CreateGlobalConfigs < ActiveRecord::Migration[5.1]
safety_assured
def change
create_table :global_configs do |t|
t.string :key
t.text :value
t.timestamps
end
end
end