diff options
Diffstat (limited to 'db/schema.rb')
| -rw-r--r-- | db/schema.rb | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index 9d86632b7..e4b85109c 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20161115141625) do +ActiveRecord::Schema.define(version: 20161115142708) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -77,6 +77,16 @@ ActiveRecord::Schema.define(version: 20161115141625) do t.datetime "updated_at" end + create_table "clean_up_results", force: true do |t| + t.string "message_key" + t.hstore "message_attributs" + t.integer "clean_up_id" + t.datetime "created_at" + t.datetime "updated_at" + end + + add_index "clean_up_results", ["clean_up_id"], :name => "index_clean_up_results_on_clean_up_id" + create_table "clean_ups", force: true do |t| t.string "status" t.datetime "started_at" |
