mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 01:47:18 +02:00
Merge branch 'master' of github.com:domify/registry
This commit is contained in:
commit
11f149bd53
11 changed files with 126 additions and 21 deletions
|
@ -0,0 +1,5 @@
|
|||
class AddForceDeleteAtToDomain < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :domains, :force_delete_at, :datetime
|
||||
end
|
||||
end
|
|
@ -12,7 +12,6 @@
|
|||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20150610112238) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
||||
|
@ -306,6 +305,7 @@ ActiveRecord::Schema.define(version: 20150610112238) do
|
|||
t.datetime "registrant_verification_asked_at"
|
||||
t.string "registrant_verification_token"
|
||||
t.json "pending_json"
|
||||
t.datetime "force_delete_at"
|
||||
end
|
||||
|
||||
add_index "domains", ["delete_at"], name: "index_domains_on_delete_at", using: :btree
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue