Skip to content

Commit

Permalink
ref: delete database and schema
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmpope committed Sep 18, 2022
1 parent 70805cc commit bca0571
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 16 deletions.
9 changes: 0 additions & 9 deletions db/migrate/20220915155102_create_users.rb

This file was deleted.

5 changes: 5 additions & 0 deletions db/migrate/20220918190639_drop_users.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class DropUsers < ActiveRecord::Migration[5.2]
def change
drop_table :users, force: :cascade
end
end
8 changes: 1 addition & 7 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,6 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 2022_09_15_155102) do

create_table "users", force: :cascade do |t|
t.string "uid"
t.string "token"
t.string "username"
end
ActiveRecord::Schema.define(version: 2022_09_18_190639) do

end

0 comments on commit bca0571

Please sign in to comment.