-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[~] bump version #93
[~] bump version #93
Conversation
@@ -0,0 +1,19 @@ | |||
# This file is auto-generated from the current state of the database. Instead |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 [rubocop] <Style/FrozenStringLiteralComment> reported by reviewdog 🐶
Missing frozen string literal comment.
# This file is auto-generated from the current state of the database. Instead | |
# frozen_string_literal: true | |
# This file is auto-generated from the current state of the database. Instead |
# | ||
# It's strongly recommended that you check this file into your version control system. | ||
|
||
ActiveRecord::Schema[7.2].define(version: 2019_03_28_085157) do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 [rubocop] <Style/NumericLiterals> reported by reviewdog 🐶
Use underscores(_) as thousands separator and separate every 3 digits with them.
ActiveRecord::Schema[7.2].define(version: 2019_03_28_085157) do | |
ActiveRecord::Schema[7.2].define(version: 20_190_328_085_157) do |
# It's strongly recommended that you check this file into your version control system. | ||
|
||
ActiveRecord::Schema[7.2].define(version: 2019_03_28_085157) do | ||
create_table "deploy_pins", charset: "utf8mb3", force: :cascade do |t| |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Prefer single-quoted strings when you don't need string interpolation or special symbols.
create_table "deploy_pins", charset: "utf8mb3", force: :cascade do |t| | |
create_table 'deploy_pins', charset: "utf8mb3", force: :cascade do |t| |
# It's strongly recommended that you check this file into your version control system. | ||
|
||
ActiveRecord::Schema[7.2].define(version: 2019_03_28_085157) do | ||
create_table "deploy_pins", charset: "utf8mb3", force: :cascade do |t| |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Prefer single-quoted strings when you don't need string interpolation or special symbols.
create_table "deploy_pins", charset: "utf8mb3", force: :cascade do |t| | |
create_table "deploy_pins", charset: 'utf8mb3', force: :cascade do |t| |
|
||
ActiveRecord::Schema[7.2].define(version: 2019_03_28_085157) do | ||
create_table "deploy_pins", charset: "utf8mb3", force: :cascade do |t| | ||
t.string "uuid" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Prefer single-quoted strings when you don't need string interpolation or special symbols.
t.string "uuid" | |
t.string 'uuid' |
# These are extensions that must be enabled in order to support this database | ||
enable_extension 'plpgsql' | ||
enable_extension "plpgsql" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Prefer single-quoted strings when you don't need string interpolation or special symbols.
enable_extension "plpgsql" | |
enable_extension 'plpgsql' |
t.string 'uuid' | ||
t.datetime 'created_at', precision: 6, null: false | ||
t.datetime 'updated_at', precision: 6, null: false | ||
create_table "deploy_pins", force: :cascade do |t| |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Prefer single-quoted strings when you don't need string interpolation or special symbols.
create_table "deploy_pins", force: :cascade do |t| | |
create_table 'deploy_pins', force: :cascade do |t| |
t.datetime 'created_at', precision: 6, null: false | ||
t.datetime 'updated_at', precision: 6, null: false | ||
create_table "deploy_pins", force: :cascade do |t| | ||
t.string "uuid" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Prefer single-quoted strings when you don't need string interpolation or special symbols.
t.string "uuid" | |
t.string 'uuid' |
t.datetime 'updated_at', precision: 6, null: false | ||
create_table "deploy_pins", force: :cascade do |t| | ||
t.string "uuid" | ||
t.datetime "created_at", null: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Prefer single-quoted strings when you don't need string interpolation or special symbols.
t.datetime "created_at", null: false | |
t.datetime 'created_at', null: false |
create_table "deploy_pins", force: :cascade do |t| | ||
t.string "uuid" | ||
t.datetime "created_at", null: false | ||
t.datetime "updated_at", null: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Prefer single-quoted strings when you don't need string interpolation or special symbols.
t.datetime "updated_at", null: false | |
t.datetime 'updated_at', null: false |
prepare release