mirror of
https://github.com/internetee/registry.git
synced 2025-07-25 20:18:22 +02:00
Add disputing logic for EPP
This commit is contained in:
parent
7a7b2f9881
commit
0f2a290d64
17 changed files with 626 additions and 325 deletions
|
@ -1,12 +1,12 @@
|
|||
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.string :domain_name, null: false
|
||||
t.string :password, null: false
|
||||
t.date :expires_at, null: false
|
||||
t.date :starts_at, null: false
|
||||
t.text :comment
|
||||
t.datetime :created_at
|
||||
t.boolean :closed, null: false, default: false
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
|
|
746
db/structure.sql
746
db/structure.sql
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue