21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-04-29 07:20:50 +02:00
chexpire/db/migrate/20180529092950_create_checks.rb
2018-08-02 00:29:53 +02:00

23 lines
654 B
Ruby

# Copyright (C) 2018 Colin Darie <colin@darie.eu>, 2018 Evolix <info@evolix.fr>
# License: GNU AGPL-3+ (see full text in LICENSE file)
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