lib/generators/rodauth/oauth/templates/db/migrate/create_rodauth_oauth.rb in rodauth-oauth-0.10.1 vs lib/generators/rodauth/oauth/templates/db/migrate/create_rodauth_oauth.rb in rodauth-oauth-0.10.2
- old
+ new
@@ -2,10 +2,10 @@
def change
create_table :oauth_applications do |t|
t.integer :account_id
t.foreign_key :accounts, column: :account_id
t.string :name, null: false
- t.string :description, null: false
+ t.string :description, null: true
t.string :homepage_url, null: false
t.string :redirect_uri, null: false
t.string :client_id, null: false, index: { unique: true }
t.string :client_secret, null: false, index: { unique: true }
t.string :scopes, null: false
\ No newline at end of file