mirror of
https://github.com/apigy/selfstarter.git
synced 2026-01-09 14:27:55 -05:00
10 lines
148 B
Ruby
10 lines
148 B
Ruby
class CreateUsers < ActiveRecord::Migration
|
|
def change
|
|
create_table :users do |t|
|
|
t.string :email
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|