Skip to content

Commit

Permalink
Add timezone column to curura_games and schema.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
lionel-k committed Apr 11, 2024
1 parent ade32b4 commit fb48d39
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions db/migrate/20240411175622_add_timezone_to_curura_games.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class AddTimezoneToCururaGames < ActiveRecord::Migration[7.1]
def change
add_column :curura_games, :timezone, :string
end
end
3 changes: 2 additions & 1 deletion 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.1].define(version: 2024_04_11_173830) do
ActiveRecord::Schema[7.1].define(version: 2024_04_11_175622) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"

Expand All @@ -26,6 +26,7 @@
t.datetime "start_time"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "timezone"
end

create_table "datasets", force: :cascade do |t|
Expand Down

0 comments on commit fb48d39

Please sign in to comment.