|
205 | 205 | t.index ["user_id"], name: "index_nodes_on_user_id"
|
206 | 206 | end
|
207 | 207 |
|
208 |
| - create_table "oauth_access_grants", id: :integer, charset: "utf8mb3", force: :cascade do |t| |
| 208 | + create_table "oauth_access_grants", id: :integer, charset: "utf8", force: :cascade do |t| |
209 | 209 | t.integer "resource_owner_id", null: false
|
210 | 210 | t.integer "application_id", null: false
|
211 | 211 | t.string "token", null: false
|
|
219 | 219 | t.index ["token"], name: "index_oauth_access_grants_on_token", unique: true
|
220 | 220 | end
|
221 | 221 |
|
222 |
| - create_table "oauth_access_tokens", id: :integer, charset: "utf8mb3", force: :cascade do |t| |
| 222 | + create_table "oauth_access_tokens", id: :integer, charset: "utf8", force: :cascade do |t| |
223 | 223 | t.integer "resource_owner_id"
|
224 | 224 | t.integer "application_id", null: false
|
225 | 225 | t.string "token", null: false
|
|
234 | 234 | t.index ["token"], name: "index_oauth_access_tokens_on_token", unique: true
|
235 | 235 | end
|
236 | 236 |
|
237 |
| - create_table "oauth_applications", id: :integer, charset: "utf8mb3", force: :cascade do |t| |
| 237 | + create_table "oauth_applications", id: :integer, charset: "utf8", force: :cascade do |t| |
238 | 238 | t.string "name", null: false
|
239 | 239 | t.string "uid", null: false
|
240 | 240 | t.string "secret", null: false
|
|
0 commit comments