21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-27 20:58:49 +02:00
chexpire/db/migrate/20180529092950_create_checks.rb

23 lines
654 B
Ruby
Raw Normal View History

# Copyright (C) 2018 Colin Darie <colin@darie.eu>, 2018 Evolix <info@evolix.fr>
# License: GNU AGPL-3+ (see full text in LICENSE file)
2018-05-29 10:28:03 +02:00
class CreateChecks < ActiveRecord::Migration[5.2]
def change
create_table :checks do |t|
t.references :user, foreign_key: true
t.integer :kind, null: false
t.string :domain, null: false
t.datetime :domain_created_at
t.datetime :domain_updated_at
t.datetime :domain_expire_at
t.datetime :last_run_at
t.datetime :last_success_at
t.string :vendor
t.string :comment
t.boolean :active, default: true, null: false
t.timestamps
end
end
end