mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
ab68e0c9db
This mechanism for flagging developer accounts will eventually replace DISCOURSE_DEVELOPER_EMAILS
7 lines
159 B
Ruby
7 lines
159 B
Ruby
class CreateDevelopersTable < ActiveRecord::Migration
|
|
def change
|
|
create_table :developers do |t|
|
|
t.integer :user_id, null: false
|
|
end
|
|
end
|
|
end
|