diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2021-02-21 19:50:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-21 19:50:12 +0100 |
commit | 8331fdf7e0ea85ecc6d7dbff00b784bb6aa1f7d4 (patch) | |
tree | 044e1475cb6e31c5c33d02a4220c95f080667c59 /db | |
parent | dcc7c686f3c4c85ebb8a3e6d5a861fc530c1840d (diff) |
Add server rules (#15769)
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20210221045109_create_rules.rb | 11 | ||||
-rw-r--r-- | db/schema.rb | 10 |
2 files changed, 20 insertions, 1 deletions
diff --git a/db/migrate/20210221045109_create_rules.rb b/db/migrate/20210221045109_create_rules.rb new file mode 100644 index 000000000..abe2fd42a --- /dev/null +++ b/db/migrate/20210221045109_create_rules.rb @@ -0,0 +1,11 @@ +class CreateRules < ActiveRecord::Migration[5.2] + def change + create_table :rules do |t| + t.integer :priority, null: false, default: 0 + t.datetime :deleted_at + t.text :text, null: false, default: '' + + t.timestamps + end + end +end diff --git a/db/schema.rb b/db/schema.rb index 18bf1d4ca..4b85fce8d 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2020_12_18_054746) do +ActiveRecord::Schema.define(version: 2021_02_21_045109) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -723,6 +723,14 @@ ActiveRecord::Schema.define(version: 2020_12_18_054746) do t.index ["target_account_id"], name: "index_reports_on_target_account_id" end + create_table "rules", force: :cascade do |t| + t.integer "priority", default: 0, null: false + t.datetime "deleted_at" + t.text "text", default: "", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + create_table "scheduled_statuses", force: :cascade do |t| t.bigint "account_id" t.datetime "scheduled_at" |