mirror of
https://github.com/internetee/registry.git
synced 2025-07-25 20:18:22 +02:00
Create scaffold for domain disputes
This commit is contained in:
parent
23642355bf
commit
7a7b2f9881
13 changed files with 238 additions and 1 deletions
14
db/migrate/20200421093637_create_disputes.rb
Normal file
14
db/migrate/20200421093637_create_disputes.rb
Normal file
|
@ -0,0 +1,14 @@
|
|||
class CreateDisputes < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
create_table :disputes do |t|
|
||||
t.string :domain_name
|
||||
t.string :password
|
||||
t.date :expires_at
|
||||
t.date :starts_at
|
||||
t.text :comment
|
||||
t.datetime :created_at
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue