Farmbot-Web-App/db/migrate/20180323190601_create_global_configs.rb

12 lines
205 B
Ruby
Raw Normal View History

2018-03-23 13:29:41 -06:00
class CreateGlobalConfigs < ActiveRecord::Migration[5.1]
safety_assured
2018-03-23 13:29:41 -06:00
def change
create_table :global_configs do |t|
t.string :key
t.text :value
t.timestamps
end
end
end