diff --git a/app/models/admin_user.rb b/app/models/admin_user.rb new file mode 100644 index 0000000..f0ef1a1 --- /dev/null +++ b/app/models/admin_user.rb @@ -0,0 +1,7 @@ +class AdminUser < ApplicationRecord + + # To configure a different table name. + # self.table_name = "admin_users" + + # ApplicationRecord already knows about the table because it is inheriting from ActiveRecord::Base +end diff --git a/app/models/user.rb b/app/models/user.rb deleted file mode 100644 index 379658a..0000000 --- a/app/models/user.rb +++ /dev/null @@ -1,2 +0,0 @@ -class User < ApplicationRecord -end