Made some progress
This commit is contained in:
parent
9c4856bdb1
commit
709c6685a9
61 changed files with 570 additions and 37 deletions
12
db/migrate/20160221003140_create_users.rb
Normal file
12
db/migrate/20160221003140_create_users.rb
Normal file
|
@ -0,0 +1,12 @@
|
|||
class CreateUsers < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :users do |t|
|
||||
t.string :email, null: false, default: ''
|
||||
t.integer :account_id, null: false
|
||||
|
||||
t.timestamps null: false
|
||||
end
|
||||
|
||||
add_index :users, :email, unique: true
|
||||
end
|
||||
end
|
12
db/migrate/20160221003621_create_follows.rb
Normal file
12
db/migrate/20160221003621_create_follows.rb
Normal file
|
@ -0,0 +1,12 @@
|
|||
class CreateFollows < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :follows do |t|
|
||||
t.integer :account_id, null: false
|
||||
t.integer :target_account_id, null: false
|
||||
|
||||
t.timestamps null: false
|
||||
end
|
||||
|
||||
add_index :follows, [:account_id, :target_account_id], unique: true
|
||||
end
|
||||
end
|
11
db/migrate/20160222122600_create_stream_entries.rb
Normal file
11
db/migrate/20160222122600_create_stream_entries.rb
Normal file
|
@ -0,0 +1,11 @@
|
|||
class CreateStreamEntries < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :stream_entries do |t|
|
||||
t.integer :account_id
|
||||
t.integer :activity_id
|
||||
t.string :activity_type
|
||||
|
||||
t.timestamps null: false
|
||||
end
|
||||
end
|
||||
end
|
|
@ -0,0 +1,7 @@
|
|||
class AddProfileFieldsToAccounts < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :accounts, :note, :text, null: false, default: ''
|
||||
add_column :accounts, :display_name, :string, null: false, default: ''
|
||||
add_column :accounts, :uri, :string, null: false, default: ''
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue