Create scaffold for domain disputes

This commit is contained in:
Karl Erik Õunapuu 2020-04-22 11:00:06 +03:00
parent 23642355bf
commit 7a7b2f9881
13 changed files with 238 additions and 1 deletions

View 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