mirror of
https://github.com/internetee/registry.git
synced 2025-08-05 09:21:43 +02:00
Transfer refactor
This commit is contained in:
parent
611130addc
commit
ad03165546
13 changed files with 172 additions and 18 deletions
14
db/migrate/20140828074404_create_domain_transfer.rb
Normal file
14
db/migrate/20140828074404_create_domain_transfer.rb
Normal file
|
@ -0,0 +1,14 @@
|
|||
class CreateDomainTransfer < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :domain_transfers do |t|
|
||||
t.integer :domain_id
|
||||
t.string :status
|
||||
t.datetime :transfer_requested_at
|
||||
t.datetime :transferred_at
|
||||
t.integer :transfer_from_id
|
||||
t.integer :transfer_to_id
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue