Add statuses to domain

This commit is contained in:
Martin Lensment 2014-08-19 13:43:01 +03:00
parent b0e9828a01
commit 32fc26b5a4
7 changed files with 60 additions and 10 deletions

View file

@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20140815114000) do
ActiveRecord::Schema.define(version: 20140819103517) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -61,6 +61,11 @@ ActiveRecord::Schema.define(version: 20140815114000) do
t.datetime "updated_at"
end
create_table "domain_statuses", force: true do |t|
t.integer "domain_id"
t.integer "setting_id"
end
create_table "domains", force: true do |t|
t.string "name"
t.integer "registrar_id"