Skip to content

Commit

Permalink
commit_deployments github id to bigint
Browse files Browse the repository at this point in the history
  • Loading branch information
frison committed Jan 27, 2025
1 parent 9731257 commit 6ecc4c2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class ChangeCommitDeploymentsGithubIdToBigint < ActiveRecord::Migration[7.2]
def change
change_column :commit_deployments, :github_id, :bigint
end
end
4 changes: 2 additions & 2 deletions test/dummy/db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema[7.2].define(version: 2024_08_21_003007) do
ActiveRecord::Schema[7.2].define(version: 2025_01_27_175900) do
create_table "api_clients", force: :cascade do |t|
t.text "permissions", limit: 65535
t.integer "creator_id", limit: 4
Expand Down Expand Up @@ -51,7 +51,7 @@
create_table "commit_deployments", force: :cascade do |t|
t.integer "commit_id"
t.integer "task_id"
t.integer "github_id"
t.bigint "github_id"
t.string "api_url"
t.datetime "created_at", precision: nil, null: false
t.datetime "updated_at", precision: nil, null: false
Expand Down

0 comments on commit 6ecc4c2

Please sign in to comment.