This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/migrate/20160727233044_create_developers_table.rb
Sam ab68e0c9db FEATURE: allow "developer" account flagging via developers table
This mechanism for flagging developer accounts will eventually replace
DISCOURSE_DEVELOPER_EMAILS
2016-07-28 10:14:06 +10:00

8 lines
159 B
Ruby

class CreateDevelopersTable < ActiveRecord::Migration
def change
create_table :developers do |t|
t.integer :user_id, null: false
end
end
end